b208a395d38f53763ec06906e47bbc0dd4ff4cca,kmelia/kmelia-library/src/main/java/org/silverpeas/components/kmelia/service/KmeliaServiceContext.java,KmeliaServiceContext,createdIntoRequestContext,#PublicationDetail#,40

Before Change


   */
  static void createdIntoRequestContext(final PublicationDetail publication) {
    String cacheKey = buildKey("publicationCreation", publication);
    getRequestCacheService().put(cacheKey, Boolean.TRUE);
  }

  /**

After Change


   */
  static void createdIntoRequestContext(final PublicationDetail publication) {
    String cacheKey = buildKey("publicationCreation", publication);
    getRequestCacheService().getCache().put(cacheKey, Boolean.TRUE);
  }

  /**